home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Sunday Times: The Month 2004 August
/
The Sunday Times - The Month 2004-08.iso
/
pc
/
engine
/
shell
/
shell.swf
/
scripts
/
DefineSprite_92
/
frame_1
/
DoAction.as
Wrap
Text File
|
2004-07-06
|
773b
|
39 lines
function setCheckboxProperty(prop, obj)
{
var state = "unchecked";
soProp = prop;
if(obj != null)
{
var v = Tardis.UsageData.getSoProp("soIssue",obj);
for(var i in v)
{
if(prop == i && v[i] == true)
{
state = "checked";
break;
}
}
}
else
{
var v = Tardis.UsageData.getSoProp("soIssue",prop);
if(Tardis.UsageData.getSoProp("soIssue",soProp) == true)
{
state = "checked";
}
}
gotoAndStop(state);
}
function setSkipSO(val, obj)
{
if(obj == null)
{
Tardis.UsageData.setSoProp("soIssue",soProp,val);
}
else
{
Tardis.UsageData.setSoProp("soIssue",soProp,val,obj);
}
}
stop();